{% extends 'base.html' %} {% load static %} {% block title %}Review History - AI Code Reviewer{% endblock %} {% block content %}

Code Review History

Browse and search through all past AI code review runs.

Reset
{% for r in reviews %} {% empty %} {% endfor %}
ID Language Code Snippet Scores (S / P / R) Overall Created At Actions
#{{ r.id }} {{ r.get_language_display }} {{ r.code|truncatechars:40 }} {{ r.score_security }} / {{ r.score_performance }} / {{ r.score_readability }} {{ r.score_overall }}/10 {{ r.created_at|date:"Y-m-d H:i" }}
{% csrf_token %}
No Review Records Found

Submit new code reviews in the workspace to fill this log.

{% if is_paginated %} {% endif %}
{% endblock %}